home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-04-16 | 703 b | 30 lines | [TEXT/CWIE] |
- // Copyright: © 1994 - 1998 by Apple Computer, Inc., all rights reserved.
-
- // ===========================================================================
- // BetterHandleStream.h
- // ===========================================================================
-
- #pragma once
-
- #include <LHandleStream.h>
-
-
- class BetterHandleStream : public LHandleStream
- {
- public:
- BetterHandleStream(int _growth_factor)
- : growth_factor(_growth_factor), LHandleStream() {};
- BetterHandleStream(Handle inHandle, int _growth_factor)
- : growth_factor(_growth_factor), LHandleStream(inHandle) {};
-
- //virtual ~LHandleStream();
-
- virtual void SetLength(Int32 inLength);
-
- protected:
- float growth_factor;
- };
-
-
-
-